:root {
  --bg: #030303;
  --panel: #101114;
  --panel-2: #17191e;
  --line: rgba(255, 255, 255, 0.14);
  --text: #f7f7f7;
  --muted: #a7aab2;
  --red: #ef151a;
  --red-2: #ff3a40;
  --gold: #d8a73f;
  --cyan: #5cc8ff;
  --green: #77dc75;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.48);
}

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

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

body {
  min-height: 100%;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
video,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.eyebrow {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.landing-body {
  overflow-x: hidden;
}

.landing-page {
  min-height: 100vh;
  overflow-x: hidden;
  padding: 24px clamp(18px, 4vw, 64px) 80px;
  background:
    linear-gradient(180deg, rgba(120, 0, 0, 0.18), rgba(0, 0, 0, 0) 34%),
    radial-gradient(circle at 50% -12%, rgba(237, 16, 20, 0.2), transparent 34rem),
    #030303;
}

.landing-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}

.contact-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 40px;
  padding: 7px 14px 7px 8px;
  color: #f3f3f3;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025)),
    rgba(9, 9, 9, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 28px rgba(0, 0, 0, 0.4);
  font-size: 0.78rem;
  font-weight: 850;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-link svg {
  width: 28px;
  height: 28px;
  padding: 5px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.18), transparent 42%),
    #111;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 18px rgba(255, 255, 255, 0.06);
}

.contact-link:hover {
  transform: translateY(-1px);
  border-color: rgba(239, 21, 26, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 14px 32px rgba(0, 0, 0, 0.48),
    0 0 24px rgba(239, 21, 26, 0.16);
}

.contact-blue svg {
  color: var(--cyan);
}

.contact-red svg {
  color: var(--red-2);
}

.contact-green svg {
  color: var(--green);
}

.hero {
  max-width: 1320px;
  margin: clamp(26px, 4vw, 56px) auto clamp(54px, 6vw, 84px);
  display: grid;
  gap: clamp(24px, 3.2vw, 40px);
  text-align: center;
}

.hero-logo-title {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.hero-logo-title img {
  width: min(680px, 84vw);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  filter:
    drop-shadow(0 0 10px rgba(255, 22, 28, 0.72))
    drop-shadow(0 0 42px rgba(255, 22, 28, 0.32));
}

.section-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(22px, 4vw, 46px);
  min-width: 0;
}

.section-nav a {
  position: relative;
  min-width: 88px;
  padding: 10px 4px 16px;
  color: #ffffff;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.88rem;
  font-weight: 900;
  transition: color 180ms ease, transform 180ms ease, text-shadow 180ms ease;
}

.section-nav a::before,
.section-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.section-nav a::before {
  bottom: 6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 21, 26, 0.9), transparent);
}

.section-nav a::after {
  bottom: 2px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--red);
  background: #050505;
  box-shadow: 0 0 16px rgba(239, 21, 26, 0.72);
  transform: translateX(-50%) rotate(45deg);
}

.section-nav a:hover {
  transform: translateY(-1px);
  color: var(--red-2);
  text-shadow: 0 0 18px rgba(239, 21, 26, 0.42);
}

.showcase-grid {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 4.5vw, 64px);
}

.showcase {
  min-width: 0;
  text-align: center;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #262626, #070707);
  border: 1px solid var(--line);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(239, 21, 26, 0.12);
}

.promo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.divider {
  position: relative;
  width: min(360px, 78%);
  height: 16px;
  margin: 28px auto 10px;
  border-top: 2px solid #a90006;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 9px;
  height: 9px;
  background: var(--red);
  transform: rotate(45deg);
  box-shadow: 0 0 14px rgba(239, 21, 26, 0.8);
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.divider span {
  position: absolute;
  left: 50%;
  top: -4px;
  width: 44%;
  height: 6px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  filter: blur(3px);
}

.section-banner {
  width: min(420px, 100%);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(239, 21, 26, 0.22));
}

.copy-block {
  width: 100%;
  max-width: 450px;
  margin: 28px auto 0;
  color: #f1f1f1;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.82;
}

.copy-block p + p {
  margin-top: 28px;
}

.info-sections {
  width: 100%;
  max-width: 1040px;
  margin: clamp(76px, 8vw, 124px) auto 0;
  display: grid;
  gap: clamp(64px, 7vw, 104px);
}

.info-section {
  display: grid;
  justify-items: center;
  gap: 28px;
  padding: clamp(26px, 3.5vw, 44px) 0 0;
  border-top: 1px solid rgba(239, 21, 26, 0.42);
  scroll-margin-top: 80px;
  text-align: center;
}

.info-copy {
  width: 100%;
  min-width: 0;
  max-width: 820px;
}

.info-copy p {
  color: #dddddd;
  font-size: 1rem;
  font-weight: 620;
  line-height: 1.9;
}

.info-copy p + p {
  margin-top: 18px;
}

.back-to-top {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 20;
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(239, 21, 26, 0.62);
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.18), transparent 38%),
    rgba(10, 0, 0, 0.9);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.48),
    0 0 24px rgba(239, 21, 26, 0.24);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.back-to-top:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 55, 60, 0.92);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(239, 21, 26, 0.38);
}

.console-body,
.dashboard-body {
  background:
    linear-gradient(180deg, rgba(216, 167, 63, 0.08), transparent 280px),
    radial-gradient(circle at 86% 10%, rgba(92, 200, 255, 0.12), transparent 28rem),
    #08090c;
}

.admin-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 26px 18px;
  border-right: 1px solid var(--line);
  background: rgba(8, 9, 12, 0.9);
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  margin-bottom: 28px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(216, 167, 63, 0.56);
  border-radius: 8px;
  color: #050505;
  background: linear-gradient(135deg, #f5c85b, #b98018);
  font-weight: 950;
}

.admin-brand strong,
.admin-brand small {
  display: block;
}

.admin-brand strong {
  font-size: 1rem;
}

.admin-brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav-item,
.ghost-button,
.icon-button,
.primary-button,
.icon-only,
.chip {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  color: #d9dce4;
  font-size: 0.9rem;
  font-weight: 760;
}

.admin-nav-item svg {
  width: 18px;
  height: 18px;
}

.admin-nav-item.active,
.admin-nav-item:hover {
  border-color: rgba(216, 167, 63, 0.5);
  background: rgba(216, 167, 63, 0.1);
  color: #fff;
}

.connection {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-top: 28px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 820;
}

.connection svg {
  width: 18px;
  height: 18px;
}

.connection.online {
  color: var(--green);
}

.admin-workspace {
  min-width: 0;
  padding: 34px clamp(20px, 4vw, 52px) 52px;
}

.admin-topbar,
.dashboard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.admin-topbar h1,
.dashboard-header h1 {
  max-width: 780px;
  margin-top: 6px;
  font-size: 2rem;
  line-height: 1.18;
}

.dashboard-header p:not(.eyebrow) {
  margin-top: 8px;
  color: var(--muted);
}

.top-actions,
.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.ghost-button,
.icon-button,
.primary-button,
.icon-only {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 14px;
  font-weight: 820;
}

.ghost-button svg,
.icon-button svg,
.primary-button svg {
  width: 18px;
  height: 18px;
}

.ghost-button:hover,
.icon-button:hover,
.primary-button:hover,
.icon-only:hover,
.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 167, 63, 0.5);
}

.primary-button {
  border-color: rgba(239, 21, 26, 0.6);
  background: linear-gradient(135deg, rgba(239, 21, 26, 0.95), rgba(170, 0, 6, 0.92));
  box-shadow: 0 12px 24px rgba(239, 21, 26, 0.2);
}

.notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0 0 20px;
  padding: 14px 16px;
  border: 1px solid rgba(216, 167, 63, 0.34);
  border-radius: 8px;
  background: rgba(216, 167, 63, 0.08);
  color: #f1e4c1;
  line-height: 1.55;
}

.notice strong {
  flex: 0 0 auto;
}

.metrics,
.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.metric,
.dash-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.metric {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.metric svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.metric span,
.dash-card span {
  color: var(--muted);
  font-size: 0.84rem;
}

.metric strong,
.dash-card strong {
  font-size: 1.35rem;
}

.feature-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
}

.chip {
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  color: #d9dce4;
  font-size: 0.82rem;
  font-weight: 780;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: start;
}

.right-rail {
  display: grid;
  gap: 18px;
}

.panel,
.chart-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 15, 19, 0.82);
  box-shadow: var(--shadow);
}

.panel {
  padding: 18px;
}

.panel-head,
.chart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.panel-head h2,
.chart-head h2 {
  margin-top: 4px;
  font-size: 1.18rem;
}

.panel-head > svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 10px;
  margin-bottom: 14px;
}

.search-box,
.compact-field {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-box {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.search-box svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
}

input,
select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--text);
  background: #0b0c10;
  outline: none;
}

.search-box input {
  min-height: 0;
  border: 0;
  padding: 0;
  background: transparent;
}

input:focus,
select:focus,
.search-box:focus-within {
  border-color: rgba(216, 167, 63, 0.6);
  box-shadow: 0 0 0 3px rgba(216, 167, 63, 0.12);
}

.service-list {
  display: grid;
  gap: 8px;
  max-height: 620px;
  overflow: auto;
  padding-right: 4px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  width: 100%;
  min-height: 66px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
}

.service-row strong,
.service-row small {
  display: block;
}

.service-row strong {
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.service-row small {
  margin-top: 4px;
  color: var(--muted);
}

.service-row .rate {
  color: var(--gold);
  font-weight: 900;
  white-space: nowrap;
}

.service-row.selected {
  border-color: rgba(239, 21, 26, 0.64);
  background: rgba(239, 21, 26, 0.1);
}

.service-id {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(216, 167, 63, 0.1);
  font-weight: 900;
}

.detail-stack {
  display: grid;
  gap: 12px;
}

.detail-stack h3 {
  font-size: 1rem;
  line-height: 1.45;
}

.detail-stack p {
  color: var(--muted);
}

.detail-grid {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.detail-grid span {
  color: var(--muted);
}

.form {
  display: grid;
  gap: 12px;
}

.form label,
.compact-field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 780;
}

.inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 8px;
}

.icon-only {
  width: 44px;
  padding: 0;
}

.icon-only svg {
  width: 18px;
  height: 18px;
}

.result-text {
  min-height: 22px;
  margin-top: 12px;
  color: var(--green);
  font-weight: 800;
}

.status-card {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.status-card dl {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.status-card div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.status-card dt {
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(92, 200, 255, 0.12);
  color: var(--cyan);
  font-weight: 900;
}

.empty-state {
  color: var(--muted);
}

.dashboard-page {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  padding: 40px 0;
}

.dashboard-metrics {
  margin-top: 22px;
}

.dash-card {
  display: grid;
  gap: 9px;
  padding: 18px;
}

.chart-panel {
  padding: 20px;
}

.compact-field {
  width: 180px;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 240px;
  padding-top: 18px;
}

.bar-col {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  height: 100%;
  gap: 8px;
}

.bar {
  width: 100%;
  min-height: 4px;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, var(--cyan), #2d6df6 55%, #183b88);
  box-shadow: 0 0 18px rgba(92, 200, 255, 0.24);
  transition: height 180ms ease;
}

.bar-label {
  color: var(--muted);
  font-size: 0.76rem;
}

.dashboard-footer {
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .admin-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .admin-nav-item {
    justify-content: center;
  }

  .admin-nav-item svg {
    flex: 0 0 auto;
  }

  .connection {
    margin-top: 14px;
  }

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

@media (max-width: 820px) {
  .landing-page {
    padding: 18px clamp(12px, 4vw, 18px) 72px;
  }

  .landing-header {
    align-items: center;
    flex-direction: column;
    gap: 16px;
  }

  .contact-nav {
    width: 100%;
    max-width: 520px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .contact-link {
    flex: 1 1 148px;
    justify-content: center;
    max-width: 168px;
  }

  .hero {
    gap: 20px;
    margin: 20px auto 52px;
  }

  .section-nav {
    gap: 18px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .section-banner {
    width: min(420px, 92vw);
  }

  .copy-block {
    margin-top: 22px;
  }

  .copy-block p + p {
    margin-top: 22px;
  }

  .info-sections {
    gap: 72px;
    margin-top: 82px;
  }

  .info-section {
    gap: 22px;
    scroll-margin-top: 44px;
  }
}

@media (max-width: 720px) {
  .admin-topbar,
  .dashboard-header,
  .notice {
    display: grid;
  }

  .admin-topbar h1,
  .dashboard-header h1 {
    font-size: 1.55rem;
  }

  .metrics,
  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .filters,
  .admin-nav,
  .chart-head {
    grid-template-columns: 1fr;
  }

  .admin-nav {
    display: grid;
  }

  .admin-nav-item {
    justify-content: flex-start;
  }

  .compact-field {
    width: 100%;
  }

  .bar-chart {
    gap: 7px;
  }
}

@media (max-width: 480px) {
  .contact-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    gap: 6px;
  }

  .contact-link {
    min-width: 0;
    max-width: none;
    justify-content: center;
    gap: 5px;
    padding: 6px 5px;
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .contact-link svg {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    padding: 4px;
  }

  .hero-logo-title img {
    width: min(360px, 88vw);
  }

  .section-nav {
    align-items: stretch;
    flex-direction: row;
    gap: 10px;
  }

  .section-nav a {
    width: auto;
    min-width: 76px;
    padding-inline: 0;
    font-size: 0.82rem;
  }

  .copy-block,
  .info-copy {
    max-width: 100%;
  }

  .copy-block,
  .info-copy p {
    font-size: 0.86rem;
    line-height: 1.82;
  }

  .info-sections {
    gap: 68px;
    margin-top: 76px;
  }

  .back-to-top {
    width: 48px;
    height: 48px;
    font-size: 0.7rem;
  }

  .admin-workspace {
    padding-inline: 14px;
  }

  .service-row {
    grid-template-columns: 1fr;
  }
}
