:root {
  color-scheme: light;
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-strong: #f9fbff;
  --ink: #08142c;
  --muted: #56657d;
  --soft: #e8eef7;
  --line: #d4deeb;
  --blue: #1f63e9;
  --blue-strong: #174dc0;
  --cyan: #0ea5b7;
  --green: #14976a;
  --red: #dc3550;
  --amber: #c97912;
  --shadow-sm: 0 8px 24px rgba(23, 38, 70, 0.08);
  --shadow: 0 24px 70px rgba(18, 34, 64, 0.16);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(150px, 220px) 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 10px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(212, 222, 235, 0.86);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand img {
  width: min(205px, 46vw);
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: #31425f;
  font-weight: 800;
  font-size: 0.94rem;
}

.nav-links a {
  padding: 8px 2px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--blue);
}

.header-cta,
.primary-action,
.secondary-action,
.download-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.15;
  cursor: pointer;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    border-color 150ms ease,
    background 150ms ease;
}

.header-cta,
.primary-action {
  padding: 0 20px;
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(31, 99, 233, 0.24);
}

.secondary-action {
  padding: 0 18px;
  background: #ffffff;
  color: #12213c;
  border-color: var(--line);
}

.header-cta:hover,
.primary-action:hover,
.secondary-action:hover,
.download-action:hover {
  transform: translateY(-1px);
}

.primary-action:hover,
.header-cta:hover {
  background: var(--blue-strong);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(460px, 1.14fr);
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
  min-height: auto;
  padding: clamp(46px, 6vw, 76px) clamp(20px, 5vw, 72px) clamp(30px, 4vw, 48px);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 250, 255, 0.96) 48%, rgba(233, 241, 252, 0.92) 100%),
    #f7faff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -18vw -34vw auto;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 183, 0.16), rgba(31, 99, 233, 0) 62%);
  pointer-events: none;
}

.hero-copy,
.hero-product,
.hero-metrics {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 660px;
  font-size: clamp(2.85rem, 4.7vw, 4.75rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 610px;
  margin: 22px 0 0;
  color: #30405d;
  font-size: clamp(1.08rem, 1.7vw, 1.26rem);
}

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

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(212, 222, 235, 0.9);
  border-radius: 999px;
  background: #ffffff;
  color: #31425f;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(25, 44, 82, 0.05);
}

.hero-checks li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.product-frame {
  position: relative;
  min-height: 500px;
  padding: 10px 0 64px 24px;
}

.console-window {
  overflow: hidden;
  width: min(760px, 100%);
  margin-left: auto;
  border: 1px solid rgba(11, 27, 57, 0.18);
  border-radius: 8px;
  background: #0b1425;
  box-shadow: var(--shadow);
}

.console-bar {
  display: grid;
  grid-template-columns: 10px minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(212, 222, 235, 0.85);
  background: #ffffff;
  color: #182844;
  font-size: 0.9rem;
}

.console-bar > span:not(.live-dot) {
  min-width: 74px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eef4fd;
  color: #20324e;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 850;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.console-body {
  display: grid;
  grid-template-columns: 68px 1fr;
  min-height: 430px;
}

.console-nav {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 16px;
  padding: 24px 0;
  background: #101c31;
}

.console-nav span {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, #e5efff, #4c86f7);
}

.console-main {
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(14, 165, 183, 0.24), transparent 38%),
    linear-gradient(20deg, rgba(220, 53, 80, 0.22), transparent 42%),
    #07101f;
}

.session-strip {
  display: grid;
  grid-template-columns: minmax(145px, 0.8fr) minmax(120px, 0.65fr) minmax(220px, 1.3fr);
  gap: 10px;
  margin-bottom: 14px;
}

.session-strip div {
  min-height: 64px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.session-strip small {
  display: block;
  margin-bottom: 4px;
  color: #aab8cf;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.session-strip strong {
  display: block;
  font-size: 0.92rem;
}

.green-text {
  color: #48daa3;
}

.desktop-preview {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(219, 229, 241, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(243, 247, 252, 0.92)),
    repeating-linear-gradient(0deg, #f1f5fa 0 32px, #e6edf6 32px 33px);
}

.preview-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  min-height: 46px;
  padding: 10px;
  border-bottom: 1px solid #dce5ef;
  background: #ffffff;
}

.preview-toolbar span {
  width: 34px;
  height: 26px;
  border-radius: 7px;
  background: #edf3fb;
  border: 1px solid #d4deeb;
}

.desktop-grid {
  display: grid;
  grid-template-columns: repeat(4, 44px);
  gap: 18px;
  padding: 30px;
}

.desktop-grid span {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(150deg, #e9f1ff, #9ac3ff);
  box-shadow: 0 12px 24px rgba(31, 99, 233, 0.16);
}

.support-panel {
  position: absolute;
  top: 88px;
  right: 28px;
  display: grid;
  gap: 9px;
  width: min(218px, 42%);
  padding: 14px;
  border: 1px solid rgba(212, 222, 235, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(13, 26, 49, 0.2);
}

.support-panel strong {
  color: var(--blue);
}

.support-panel button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f8fbff;
  color: #13213c;
  font-weight: 850;
  text-align: left;
  padding: 0 11px;
}

.phone-preview {
  position: absolute;
  right: 5%;
  bottom: 10px;
  display: grid;
  gap: 9px;
  width: 190px;
  padding: 18px 14px 16px;
  border: 1px solid #d6e0ee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(15, 30, 55, 0.2);
}

.phone-top {
  width: 56px;
  height: 5px;
  margin: 0 auto 4px;
  border-radius: 999px;
  background: #d7e1ee;
}

.phone-preview strong {
  color: #13213c;
}

.phone-preview span {
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 7px;
  background: #f2f6fc;
  color: #34455f;
  font-size: 0.9rem;
  font-weight: 800;
}

.security-badge {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: min(260px, 48%);
  padding: 16px;
  border: 1px solid rgba(212, 222, 235, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(15, 30, 55, 0.16);
}

.security-badge small {
  display: block;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.security-badge strong {
  display: block;
  margin-top: 4px;
  line-height: 1.25;
}

.hero-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hero-metrics div {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.82);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 3px;
}

.hero-metrics span {
  color: var(--muted);
}

.download-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  padding: clamp(34px, 5vw, 56px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.download-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.download-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.download-action {
  display: grid;
  align-content: center;
  justify-content: start;
  min-height: 94px;
  padding: 16px;
  border-color: var(--line);
  background: var(--surface-strong);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.download-action.primary {
  background: #0b1730;
  color: #ffffff;
  border-color: #0b1730;
}

.download-action span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.download-action.primary span {
  color: #77d6e2;
}

.download-action strong {
  display: block;
  margin-top: 5px;
  font-size: 1.02rem;
}

.is-pending {
  background: #f5f8fc;
  color: #30415f;
  box-shadow: none;
}

.is-pending span {
  color: var(--amber);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.quick-strip div {
  padding: 24px clamp(20px, 5vw, 56px);
  background: #f9fbff;
}

.quick-strip strong {
  display: block;
  margin-bottom: 5px;
}

.quick-strip span {
  color: var(--muted);
}

.section,
.security-band {
  padding: clamp(52px, 7vw, 88px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 840px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  max-width: none;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.split-heading > p {
  margin: 0;
}

.workflow-section {
  background: #ffffff;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.workflow-grid article {
  position: relative;
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow-sm);
}

.workflow-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 44px;
  border-radius: 8px;
  background: #0b1730;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 950;
}

.workflow-grid article::after {
  content: "";
  position: absolute;
  top: 40px;
  right: 24px;
  width: calc(100% - 98px);
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}

.workflow-grid p {
  margin: 0;
  color: var(--muted);
}

.platform-section {
  background: #f6f9fd;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.feature-grid article,
.newsletter-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.feature-grid article {
  min-height: 230px;
  padding: 22px;
}

.feature-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: #edf4ff;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 950;
}

.feature-grid article:nth-child(2) .feature-kicker {
  background: #eaf8f6;
  color: var(--cyan);
}

.feature-grid article:nth-child(3) .feature-kicker {
  background: #fff5e4;
  color: var(--amber);
}

.feature-grid article:nth-child(4) .feature-kicker {
  background: #fcecf0;
  color: var(--red);
}

.feature-grid p,
.newsletter-panel p {
  margin: 0;
  color: var(--muted);
}

.operations-section {
  background: #ffffff;
}

.operations-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 255, 0.94)),
    #ffffff;
  box-shadow: var(--shadow-sm);
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ops-grid div {
  min-height: 138px;
  padding: 17px;
  border: 1px solid rgba(212, 222, 235, 0.88);
  border-radius: 8px;
  background: #ffffff;
}

.ops-grid strong {
  display: block;
  margin-bottom: 8px;
}

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

.security-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  background: #0b1425;
  color: #ffffff;
}

.security-band .eyebrow {
  color: #67d7e1;
}

.security-band .section-heading p:not(.eyebrow) {
  color: #c4d0e3;
}

.security-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.security-list li {
  display: grid;
  gap: 5px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.security-list strong {
  color: #ffffff;
}

.security-list span {
  color: #c4d0e3;
}

.requirements-section {
  background: #ffffff;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.requirements-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.requirements-grid ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.requirements-grid li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.requirements-grid li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.faq-section {
  background: #f6f9fd;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin-top: 34px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(23, 38, 70, 0.06);
}

.faq-list summary {
  min-height: 58px;
  padding: 17px 20px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.legal-page {
  min-height: calc(100svh - 72px);
  padding: clamp(48px, 7vw, 86px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 255, 0.9)),
    #f6f9fd;
}

.legal-document {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.legal-document h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.legal-document h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.legal-document p {
  color: var(--muted);
}

.legal-intro {
  margin-top: 18px;
  color: #30405d;
  font-size: 1.12rem;
}

.legal-document a {
  color: var(--blue);
  font-weight: 850;
}

.contact-section {
  background: #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 24px;
  margin-top: 34px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.newsletter-panel {
  align-self: start;
  padding: 24px;
}

label {
  display: grid;
  gap: 7px;
  color: #31405a;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cbd6e6;
  border-radius: 8px;
  background: #f9fbfe;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(31, 99, 233, 0.25);
  outline-offset: 2px;
}

.full-row {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: var(--red);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer a {
  font-weight: 850;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-frame {
    padding-left: 0;
  }

  .console-window {
    margin-left: 0;
  }

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

  .security-band,
  .contact-layout,
  .download-band,
  .split-heading,
  .operations-panel {
    grid-template-columns: 1fr;
  }

  .workflow-grid,
  .requirements-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
  }

  .nav-links {
    display: none;
  }

  .brand img {
    width: min(190px, 52vw);
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .download-actions,
  .quick-strip,
  .hero-metrics,
  .feature-grid,
  .contact-form,
  .ops-grid {
    grid-template-columns: 1fr;
  }

  .product-frame {
    min-height: auto;
    padding-bottom: 0;
  }

  .console-body {
    grid-template-columns: 48px 1fr;
    min-height: 330px;
  }

  .console-bar {
    grid-template-columns: 10px 1fr;
  }

  .console-bar > span:not(.live-dot) {
    display: none;
  }

  .console-nav {
    gap: 12px;
    padding: 18px 0;
  }

  .console-nav span {
    width: 24px;
    height: 24px;
  }

  .session-strip {
    grid-template-columns: 1fr;
  }

  .desktop-preview {
    min-height: 245px;
  }

  .desktop-grid {
    grid-template-columns: repeat(3, 36px);
    gap: 14px;
    padding: 24px;
  }

  .desktop-grid span {
    width: 36px;
    height: 36px;
  }

  .support-panel,
  .phone-preview,
  .security-badge {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
