* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* FounderTheme (dark) from apps/ios FounderTheme.swift */
  --primary: #9bcb4a;
  --accent: #a6e85a;
  --background: #14170f;
  --backdrop-end: #191e11;
  --surface: #1d2117;
  --surface2: #272e1d;
  --text: #f1f3ea;
  --secondary-text: #a3ac96;
  --tertiary-text: #6b7360;
  --positive: #4fd183;
  --negative: #ff6262;
  --on-primary: #151a0d;
  --border: rgba(241, 243, 234, 0.12);
  --radius-card: 24px;
  --radius-button: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    ui-rounded, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background: linear-gradient(135deg, var(--background), var(--backdrop-end));
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Nav ---------- */

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--accent);
  background: rgba(166, 232, 90, 0.12);
  border: 0.75px solid var(--border);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
}

.brand-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--secondary-text);
}

.nav-cta {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--on-primary);
  background: var(--primary);
  border-radius: 999px;
  padding: 10px 18px;
  transition: background 0.15s ease;
}

.nav-cta:hover {
  background: var(--accent);
}

/* ---------- Hero ---------- */

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 20px;
}

.metric-rotator {
  position: relative;
  display: inline-block;
  color: var(--primary);
}

.metric-sizer {
  visibility: hidden;
}

.metric-option {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.35em);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0s linear 0.4s;
}

.metric-option.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.4s ease 0.15s,
    transform 0.4s ease 0.15s,
    visibility 0s;
}

.sub {
  color: var(--secondary-text);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 46ch;
}

/* ---------- Waitlist form ---------- */

.waitlist {
  display: flex;
  gap: 10px;
  max-width: 480px;
}

.waitlist input {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  border: 0.75px solid var(--border);
  border-radius: var(--radius-button);
  padding: 15px 16px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.waitlist input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(155, 203, 74, 0.18);
}

.waitlist input::placeholder {
  color: var(--tertiary-text);
}

.waitlist button {
  font-size: 15px;
  font-family: inherit;
  font-weight: 700;
  color: var(--on-primary);
  background: var(--primary);
  border: 0.75px solid rgba(21, 26, 13, 0.12);
  border-radius: var(--radius-button);
  padding: 15px 22px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  transition:
    background 0.15s ease,
    transform 0.15s ease;
}

.waitlist button:hover {
  background: var(--accent);
}

.waitlist button:active {
  transform: scale(0.98);
}

.waitlist button:disabled {
  opacity: 0.7;
  cursor: default;
}

.message {
  min-height: 22px;
  font-size: 14px;
  margin-top: 12px;
}

.message.error {
  color: var(--negative);
}

/* ---------- Success panel ---------- */

.success-panel {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: rgba(79, 209, 131, 0.1);
  border: 0.75px solid rgba(79, 209, 131, 0.35);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  animation: pop-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.success-check {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--on-primary);
  background: var(--positive);
}

.success-check svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: draw-check 0.4s ease-out 0.15s forwards;
}

@keyframes draw-check {
  to {
    stroke-dashoffset: 0;
  }
}

.success-title {
  font-size: 16px;
  font-weight: 800;
}

.success-sub {
  font-size: 14px;
  color: var(--secondary-text);
}

/* ---------- Confetti canvas ---------- */

.confetti-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
}

/* ---------- Waitlist modal ---------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 12, 8, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-overlay[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  width: min(460px, 100%);
  background: var(--surface);
  border: 0.75px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
  padding: 28px 26px 22px;
  animation: pop-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
  color: var(--tertiary-text);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--text);
  background: var(--surface2);
}

.progress-dots {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}

.dot-step {
  height: 5px;
  flex: 1;
  border-radius: 999px;
  background: var(--surface2);
  transition: background 0.25s ease;
}

.dot-step.is-active {
  background: var(--primary);
}

.step-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.modal-step {
  display: none;
}

.modal-step.is-active {
  display: block;
  animation: pop-in 0.3s ease;
}

.modal-step h2 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 6px;
}

.step-hint {
  font-size: 14px;
  color: var(--secondary-text);
  margin-bottom: 18px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chip {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-text);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease,
    transform 0.1s ease;
}

.chip:hover {
  color: var(--text);
  border-color: var(--secondary-text);
}

.chip:active {
  transform: scale(0.97);
}

.chip.is-selected {
  color: var(--on-primary);
  background: var(--primary);
  border-color: var(--primary);
}

.modal-input {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--background);
  border: 0.75px solid var(--border);
  border-radius: var(--radius-button);
  padding: 13px 16px;
  outline: none;
  margin-top: 16px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.modal-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(155, 203, 74, 0.18);
}

.modal-error {
  min-height: 20px;
  font-size: 13px;
  color: var(--negative);
  margin-top: 10px;
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.modal-actions .spacer {
  flex: 1;
}

.btn-back,
.btn-skip {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-text);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 8px;
}

.btn-back:hover,
.btn-skip:hover {
  color: var(--text);
}

.btn-next {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--on-primary);
  background: var(--primary);
  border: 0.75px solid rgba(21, 26, 13, 0.12);
  border-radius: var(--radius-button);
  padding: 13px 24px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-next:hover {
  background: var(--accent);
}

.btn-next:active {
  transform: scale(0.98);
}

/* ---------- Pills ---------- */

.pill,
.source-pill,
.live-pill,
.source-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.pill {
  color: var(--secondary-text);
  background: rgba(163, 172, 150, 0.11);
  border-radius: 999px;
  padding: 7px 13px;
}

.pill svg,
.source-pill svg,
.source-tag svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pill-positive {
  color: var(--positive);
  background: rgba(79, 209, 131, 0.11);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

/* ---------- Hero visual ---------- */

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone {
  width: min(320px, 100%);
  background: linear-gradient(160deg, #232917, #171c10);
  border: 1px solid rgba(241, 243, 234, 0.16);
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: rotate3d(1, -1, 0, 4deg);
}

.phone-notch {
  width: 96px;
  height: 22px;
  background: #0d100a;
  border-radius: 999px;
  margin: 2px auto 12px;
}

.screen {
  background: linear-gradient(
    160deg,
    var(--background),
    var(--backdrop-end)
  );
  border-radius: 34px;
  border: 1px solid var(--border);
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px 2px;
}

.eyebrow-small {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--tertiary-text);
}

.live-pill {
  color: var(--positive);
  background: rgba(79, 209, 131, 0.11);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--positive);
  animation: pulse 2s infinite;
}

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

.metric-card {
  background: var(--surface);
  border: 0.75px solid var(--border);
  border-radius: var(--radius-card);
  padding: 14px;
}

.metric-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary-text);
}

.source-tag {
  color: var(--primary);
  background: rgba(155, 203, 74, 0.11);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 11px;
}

.metric-value {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.metric-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
}

.metric-change svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.up {
  color: var(--positive);
}

.down {
  color: var(--negative);
}

.spark {
  width: 100%;
  height: 48px;
  margin-top: 10px;
  display: block;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.metric-card.small .metric-value {
  font-size: 22px;
}

.milestone-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface2);
  border: 0.75px solid var(--border);
  border-radius: var(--radius-card);
  padding: 12px 14px;
}

.trophy {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--primary);
  background: rgba(155, 203, 74, 0.12);
  border: 0.75px solid var(--border);
}

.trophy svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.milestone-title {
  font-size: 13px;
  font-weight: 700;
}

.milestone-sub {
  font-size: 12px;
  color: var(--tertiary-text);
}

.sources-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 2px;
}

.source-pill {
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
}

.source-pill.stripe {
  color: var(--primary);
  background: rgba(155, 203, 74, 0.11);
}

.source-pill.clerk {
  color: var(--accent);
  background: rgba(166, 232, 90, 0.11);
}

.source-pill.supabase {
  color: var(--positive);
  background: rgba(79, 209, 131, 0.11);
}

.widget-card {
  position: relative;
  z-index: 2;
  width: 210px;
  margin-top: -14px;
  transform: translateX(72px);
  background: linear-gradient(170deg, #1a1e12, #12150c);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.45);
  padding: 16px 18px 18px;
  animation: float 5s ease-in-out infinite;
}

.widget-card--hover {
  position: absolute;
  right: -26px;
  bottom: 12px;
  margin: 0;
  transform: none;
  animation: float-hover 5s ease-in-out infinite;
}

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

.widget-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--primary);
}

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

.widget-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.widget-brand {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--tertiary-text);
}

.widget-tag {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--tertiary-text);
  text-align: right;
}

.widget-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--secondary-text);
}

.widget-value {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.widget-change {
  color: var(--positive);
  font-size: 16px;
  font-weight: 700;
}

/* ---------- Features ---------- */

.features {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  background: rgba(29, 33, 23, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0.75px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  border: 0.75px solid var(--border);
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tint-green {
  color: var(--primary);
  background: rgba(155, 203, 74, 0.12);
}

.tint-lime {
  color: var(--accent);
  background: rgba(166, 232, 90, 0.12);
}

.tint-emerald {
  color: var(--positive);
  background: rgba(79, 209, 131, 0.12);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--secondary-text);
}

/* ---------- Bottom CTA ---------- */

.cta {
  max-width: 640px;
  margin: 0 auto;
  padding: 88px 24px 96px;
  text-align: center;
}

.cta h2 {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.cta p {
  color: var(--secondary-text);
  font-size: 17px;
  margin-bottom: 28px;
}

.cta .waitlist {
  margin: 0 auto;
}

/* ---------- Waitlist progress ---------- */

.waitlist-progress {
  margin-top: 18px;
  max-width: 480px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary-text);
  margin-bottom: 8px;
}

.progress-meta strong {
  color: var(--primary);
}

.spots-left {
  white-space: nowrap;
  color: var(--tertiary-text);
}

.progress-track {
  height: 6px;
  border-radius: 999px;
  background: var(--surface2);
  border: 0.5px solid var(--border);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--primary);
  transition: width 0.6s ease;
}

.progress-sub {
  font-size: 12px;
  color: var(--tertiary-text);
  margin-top: 6px;
}

/* ---------- Founding / countdown ---------- */

.founding {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 24px 0;
}

.founding-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.founding-header h2 {
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 0.75px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
}

.cd-unit strong {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.cd-unit em {
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tertiary-text);
}

.cd-sep {
  font-weight: 800;
  color: var(--tertiary-text);
  margin-top: -10px;
}

.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tier-card {
  border-radius: var(--radius-card);
  border: 0.75px solid var(--border);
  padding: 22px;
}

.tier-active {
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.tier-muted {
  background: rgba(29, 33, 23, 0.5);
  color: var(--secondary-text);
}

.tier-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-primary);
  background: var(--primary);
  border-radius: 999px;
  padding: 5px 10px;
  margin-bottom: 10px;
}

.tier-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.tier-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.tier-price.muted {
  color: var(--secondary-text);
}

.tier-price span {
  font-size: 16px;
  font-weight: 600;
}

.tier-card ul {
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--secondary-text);
}

.tier-card ul li::before {
  content: "✓ ";
  color: var(--positive);
  font-weight: 700;
}

@media (max-width: 640px) {
  .tier-grid {
    grid-template-columns: 1fr;
  }
}

footer {
  text-align: center;
  font-size: 13px;
  color: var(--tertiary-text);
  padding: 24px;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 64px;
    padding-top: 32px;
  }

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

  .widget-card {
    right: 4px;
    bottom: -24px;
    transform: translateX(36px);
  }
}

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

@media (max-width: 480px) {
  .waitlist {
    flex-direction: column;
  }

  .waitlist button {
    width: 100%;
  }

  .nav-cta {
    padding: 9px 14px;
    font-size: 13px;
  }

  .phone {
    transform: none;
  }

  .widget-card {
    width: 180px;
    transform: translateX(32px);
  }

  .widget-value {
    font-size: 34px;
  }
}
