/* ====================================================
 * Vilkax · /company/ — Pass-141 business info page.
 * ==================================================== */
.company-body {
  background: var(--bg, #0B1426);
  color: var(--text-default, #E2E8F0);
  font-family: var(--font-brand, "Manrope", system-ui, sans-serif);
  margin: 0;
  min-height: 100vh;
}
.company-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.company-hero {
  text-align: center;
  margin-bottom: 36px;
}
.company-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.42em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(147, 197, 253, 0.85);
}
.company-title {
  margin: 0 0 14px;
  font-size: clamp(26px, 4.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.company-sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.78);
}

.company-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}

.company-card {
  background:
    radial-gradient(120% 60% at 50% 0%,
      rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0) 60%),
    rgba(11, 20, 38, 0.55);
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 14px;
  padding: 22px 22px 20px;
  box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.05);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.company-card:hover {
  border-color: rgba(96, 165, 250, 0.32);
  box-shadow:
    inset 0 0 0 1px rgba(96, 165, 250, 0.08),
    0 8px 24px -10px rgba(37, 99, 235, 0.30);
}
.company-card-wide { grid-column: 1 / -1; }
.company-card h2 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(147, 197, 253, 0.90);
}
.company-line {
  margin: 0 0 2px;
  font-size: 14px;
  color: #f1f5f9;
}
.company-meta {
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
  color: rgba(226, 232, 240, 0.72);
}
.company-meta code {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11.5px;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.32);
  color: #bfdbfe;
  letter-spacing: 0.04em;
  margin-left: 4px;
}
.company-fineprint {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(148, 163, 184, 0.85);
}

.company-contact {
  margin: 0; padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
}
.company-contact a {
  color: #bfdbfe;
  text-decoration: none;
  border-bottom: 1px dotted rgba(96, 165, 250, 0.45);
  transition: color 180ms ease, border-color 180ms ease;
}
.company-contact a:hover {
  color: #ffffff;
  border-bottom-color: rgba(96, 165, 250, 0.85);
}
.company-contact strong { color: rgba(241, 245, 249, 0.85); font-weight: 600; }

.company-links, .company-bullets {
  margin: 0; padding-left: 18px;
  list-style: disc;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.78);
}
.company-links { list-style: none; padding-left: 0; }
.company-links li { margin-bottom: 4px; }
.company-bullets li { margin-bottom: 4px; }
.company-links a {
  color: #93c5fd;
  text-decoration: none;
  transition: color 180ms ease;
}
.company-links a:hover { color: #ffffff; }

.company-photo {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.company-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 30% 30%, rgba(96, 165, 250, 0.22), transparent 60%),
    radial-gradient(60% 60% at 70% 70%, rgba(168, 85, 247, 0.12), transparent 60%),
    linear-gradient(135deg, #0a1422 0%, #0f1d33 100%);
  border: 1px solid rgba(96, 165, 250, 0.22);
  display: flex;
  align-items: flex-end;
}
.company-photo-caption {
  margin: 14px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(241, 245, 249, 0.85);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.company-photo figcaption {
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(148, 163, 184, 0.85);
}

.company-trust {
  margin-top: 24px;
  padding: 24px;
  background: rgba(11, 20, 38, 0.40);
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 14px;
  text-align: center;
}
.company-trust h2 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.company-trust p {
  max-width: 560px;
  margin: 0 auto 16px;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.78);
}
.company-trust p a {
  color: #93c5fd;
  text-decoration: none;
  border-bottom: 1px dotted rgba(96, 165, 250, 0.45);
}
.company-trust-row {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.company-trust-chip {
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.85);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 999px;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease,
              color 180ms ease, box-shadow 180ms ease;
}
.company-trust-chip:hover {
  background: rgba(37, 99, 235, 0.16);
  border-color: rgba(96, 165, 250, 0.55);
  color: #ffffff;
  box-shadow: 0 0 18px -4px rgba(59, 130, 246, 0.45);
}
