:root {
  --bg: #141e30;
  --panel: #1e2e44;
  --panel-2: #253550;
  --text: #ffffff;
  --muted: #a8b8d0;
  --brand: #2E9DDE;
  --brand-glow: #2E9DDE;
  --brand-dark: #20314B;
  --brand-light: #5db8e8;
  --line: #263548;
  --hex-pattern: rgba(46, 157, 222, 0.04);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-display: swap;
  background: 
    radial-gradient(circle at 20% 0%, rgba(45, 65, 95, 0.35), var(--bg) 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 49px,
      var(--hex-pattern) 49px,
      var(--hex-pattern) 50px
    ),
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 49px,
      var(--hex-pattern) 49px,
      var(--hex-pattern) 50px
    ),
    repeating-linear-gradient(
      120deg,
      transparent,
      transparent 49px,
      var(--hex-pattern) 49px,
      var(--hex-pattern) 50px
    ),
    var(--bg);
  background-size: 100% 100%, 86px 100px, 86px 100px, 86px 100px, 100% 100%;
  color: var(--text);
  min-height: 100vh;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover {
  color: #5db8e8;
  text-shadow: 0 0 8px rgba(46, 157, 222, 0.5);
  text-decoration: underline;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(28, 40, 58, 0.96);
  border-bottom: 1px solid rgba(46, 157, 222, 0.2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4), 0 0 40px rgba(46, 157, 222, 0.06);
  z-index: 10;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  min-height: 80px;
}

.brand img {
  max-width: 350px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--brand);
  text-shadow: 0 0 8px rgba(46, 157, 222, 0.5);
}

.hero {
  padding: 4rem 0 3rem;
}

.hero h1 .no-wrap {
  white-space: nowrap;
}

.hero .card {
  padding: 1.1rem 1rem;
}

.hero .card .check-list {
  padding-left: 1rem;
  padding-right: 0;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(13, 21, 40, 0.4), rgba(5, 8, 18, 0));
  border-top: 1px solid rgba(46, 157, 222, 0.1);
  border-bottom: 1px solid rgba(46, 157, 222, 0.1);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 157, 222, 0.3), transparent);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1.25rem;
  align-items: start;
}

.cards-2,
.cards-3 {
  display: grid;
  gap: 1rem;
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid rgba(46, 157, 222, 0.15);
  border-radius: 14px;
  padding: 1.1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(46, 157, 222, 0.1), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card-glow {
  box-shadow: 
    0 0 0 1px rgba(46, 157, 222, 0.25),
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(46, 157, 222, 0.1);
  border-color: rgba(46, 157, 222, 0.3);
}

h1 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  margin: 0.3rem 0 1rem;
  line-height: 1.15;
}

h2 {
  margin-top: 0;
}

.eyebrow {
  display: inline-block;
  margin: 0;
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(46, 157, 222, 0.4);
}

.lead {
  color: #e0f0ff;
  max-width: 60ch;
  font-size: 1.05rem;
}

.muted {
  color: var(--muted);
}

.top-gap {
  margin-top: 1.3rem;
}

.actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  text-decoration: none;
}

.btn-primary {
  color: #041328;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  box-shadow: 
    0 4px 12px rgba(46, 157, 222, 0.3),
    0 0 20px rgba(46, 157, 222, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  box-shadow: 
    0 6px 16px rgba(46, 157, 222, 0.4),
    0 0 30px rgba(46, 157, 222, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(46, 157, 222, 0.3);
  background: rgba(21, 32, 48, 0.9);
  box-shadow: 0 0 15px rgba(46, 157, 222, 0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-secondary:hover {
  border-color: rgba(46, 157, 222, 0.5);
  box-shadow: 0 0 20px rgba(46, 157, 222, 0.2);
  text-decoration: none;
}

.check-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(10, 15, 31, 0.8);
  color: var(--text);
  border: 1px solid rgba(46, 157, 222, 0.2);
  border-radius: 9px;
  padding: 0.65rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(46, 157, 222, 0.5);
  box-shadow: 0 0 15px rgba(46, 157, 222, 0.2);
}

.site-footer {
  border-top: 1px solid rgba(46, 157, 222, 0.1);
  padding: 1.25rem 0;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 157, 222, 0.3), transparent);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Service detail blocks */
.service-block {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(46, 157, 222, 0.1);
  position: relative;
}

.service-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 157, 222, 0.2), transparent);
}

.service-block:first-of-type {
  margin-top: 2rem;
  padding-top: 0;
  border-top: none;
}

.service-block-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-block-header .service-icon {
  font-size: 1.75rem;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(46, 157, 222, 0.4));
}

.service-tagline {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0.25rem 0 0;
  font-style: italic;
}

.included-list {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
  color: var(--text);
  line-height: 1.6;
}

.included-list li {
  margin-bottom: 0.4rem;
}

.engagement-box {
  background: rgba(21, 32, 48, 0.6);
  border: 1px solid rgba(46, 157, 222, 0.2);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  box-shadow: 0 0 20px rgba(46, 157, 222, 0.05);
}

.engagement-box p {
  margin: 0.4rem 0;
}

.engagement-box p:first-child {
  margin-top: 0;
}

.service-block-addons {
  background: linear-gradient(180deg, rgba(21, 32, 48, 0.4), rgba(10, 15, 26, 0.2));
  border: 1px solid rgba(46, 157, 222, 0.15);
  border-radius: 14px;
  padding: 1.5rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-shadow: 0 0 30px rgba(46, 157, 222, 0.05);
}

.card-service {
  display: flex;
  flex-direction: column;
}

.card-service .service-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 6px rgba(46, 157, 222, 0.3));
}

.card-service .engagement {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.5rem 0 0.75rem;
}

.card-link {
  margin-top: auto;
  font-weight: 600;
  color: var(--brand);
}

.card-link:hover {
  color: #5db8e8;
  text-shadow: 0 0 8px rgba(46, 157, 222, 0.5);
}

.text-center {
  text-align: center;
}

/* Team page styles */
.team-member {
  margin-top: 2rem;
}

.team-member-header {
  margin-bottom: 2.5rem;
}

.team-member-info h2 {
  margin: 0 0 0.25rem;
  font-size: 2rem;
}

.team-role {
  color: var(--brand);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 0 8px rgba(46, 157, 222, 0.3);
}

.team-bio {
  max-width: 900px;
}

.team-bio p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #e0f0ff;
}

.team-bio p:last-child {
  margin-bottom: 0;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--brand);
  color: #041328;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
  font-weight: 700;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 20;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--brand);
  color: #041328;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(46, 157, 222, 0.4);
  z-index: 100;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.back-to-top.visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--brand-light);
  box-shadow: 0 6px 16px rgba(46, 157, 222, 0.5);
  transform: translateY(-2px);
}

.back-to-top:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Loading spinner */
.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(46, 157, 222, 0.3);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form improvements */
.form-message {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(46, 157, 222, 0.1);
  border: 1px solid rgba(46, 157, 222, 0.3);
  color: var(--brand);
}

.form-message.error {
  display: block;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  color: #ff6b6b;
}

.btn-loading {
  display: none;
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .btn-loading {
  display: inline;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
*:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card,
.service-block {
  animation: fadeIn 0.6s ease-out;
}

/* SVG icon styles */
.service-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(46, 157, 222, 0.4));
}

.service-block-header .service-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(46, 157, 222, 0.4));
}

.card-service .service-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 0.5rem;
}

/* Print styles */
@media print {
  .site-header,
  .back-to-top,
  .mobile-menu-toggle,
  .skip-link,
  .actions,
  .btn {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .card {
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }

  a {
    color: black;
    text-decoration: underline;
  }

  .section {
    page-break-inside: avoid;
  }
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero h1 .no-wrap {
    white-space: normal;
  }

  .cards-2,
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .brand img {
    max-width: 220px;
    max-height: 70px;
  }

  .service-block-addons {
    margin-left: 0;
    margin-right: 0;
  }

  .team-member-info h2 {
    font-size: 1.6rem;
  }
  
  .team-bio p {
    font-size: 1rem;
  }

  /* Mobile menu */
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--panel);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(46, 157, 222, 0.15);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin-bottom: 1rem;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem;
    border-radius: 8px;
  }

  .nav-links a:hover {
    background: rgba(46, 157, 222, 0.1);
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }
}

/* FAQ Styles */
.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-item {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid rgba(46, 157, 222, 0.15);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(46, 157, 222, 0.3);
  box-shadow: 0 0 20px rgba(46, 157, 222, 0.1);
}

.faq-item[open] {
  border-color: rgba(46, 157, 222, 0.4);
}

.faq-question {
  padding: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
}

.faq-question::before {
  content: "+";
  display: inline-block;
  margin-right: 0.75rem;
  color: var(--brand);
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::before {
  content: "−";
}

.faq-question:hover {
  color: var(--brand);
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-answer p {
  margin: 0;
}

/* ----- Customer portal ----- */
.portal-main {
  padding: 2rem 0 4rem;
  min-height: 60vh;
}
.portal-container {
  max-width: 900px;
  margin: 0 auto;
}
.portal-card {
  background: var(--panel);
  border: 1px solid rgba(46, 157, 222, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.portal-login {
  max-width: 420px;
  margin: 2rem auto;
}
.portal-title {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  color: var(--text);
}
.portal-subtitle {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.portal-form .portal-field {
  margin-bottom: 1.25rem;
}
.portal-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
  color: var(--text);
}
.portal-form input,
.portal-form select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-size: 1rem;
}
.portal-form input:focus,
.portal-form select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(46, 157, 222, 0.2);
}
.portal-btn {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
}
.portal-btn-sm {
  padding: 0.4rem 0.75rem;
  font-size: 0.9rem;
}
.portal-footer-note {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.portal-dashboard {
  background: var(--panel);
  border: 1px solid rgba(46, 157, 222, 0.2);
  border-radius: 12px;
  padding: 1.5rem 2rem 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.portal-dash-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.portal-user {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.portal-user a {
  margin-left: 0.5rem;
}
.portal-tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.portal-tab {
  padding: 0.6rem 1rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.portal-tab:hover {
  color: var(--text);
}
.portal-tab.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}
.portal-tab-panel {
  display: none;
}
.portal-tab-panel.active {
  display: block;
}
.portal-panel-loading {
  color: var(--muted);
  padding: 1rem 0;
}
.portal-agents-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.portal-agents-header h2 {
  margin: 0;
  font-size: 1.2rem;
}
.portal-agents-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.portal-agent-card {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.25rem;
}
.portal-agent-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.portal-agent-host {
  font-weight: 600;
  color: var(--text);
}
.portal-agent-status.success { color: #4ade80; }
.portal-agent-status.error { color: #f87171; }
.portal-agent-status.muted { color: var(--muted); }
.portal-agent-meta {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.portal-token-box {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}
.portal-token-box h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}
.portal-token-box pre {
  margin: 0.75rem 0;
  padding: 0.75rem;
  background: rgba(0,0,0,0.3);
  border-radius: 6px;
  overflow-x: auto;
  font-size: 0.8rem;
  word-break: break-all;
}
.portal-table-wrap {
  overflow-x: auto;
}
.portal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.portal-table th,
.portal-table td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.portal-table th {
  color: var(--muted);
  font-weight: 500;
}
.portal-scan-status.success { color: #4ade80; }
.portal-scan-status.error { color: #f87171; }
.portal-scan-status.running { color: var(--brand); }
.portal-scan-status.muted { color: var(--muted); }
.portal-run-scan-form-wrap .portal-form {
  max-width: 480px;
}
