:root {
  --bg: #17171b;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f3f4fb;
  --blue: #4d74ff;
  --blue-2: #6f96ff;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(79, 116, 255, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(83, 195, 255, 0.06), transparent 24%),
    #131419;
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

body {
  min-height: 100vh;
}

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

button,
input {
  font: inherit;
}

.hero-header,
.section-heading {
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
}

.hero h1,
.section-heading h2,
.cta-card h2,
.reports-section h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.profile-button {
  padding: 10px 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, #5d84ff, #4467ea);
  box-shadow: 0 10px 20px rgba(77, 116, 255, 0.18);
  font-size: 13px;
  font-weight: 700;
}

.hero h1 {
  text-align: center;
}

/* Premium company card header (centered) */
.company-card-header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.company-thumb-strip-center {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
}

.company-logo-link-premium {
  background: #fff;
  border-radius: 14px;
  border: 2px solid green;
  display: inline-block;
  padding: 7px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 8px;
}

.company-logo-link-premium-transparent {
  background: transparent;
  border-radius: 14px;
  border: 2px solid green;
  display: inline-block;
  padding: 7px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 8px;
}

.company-logo-link-premium img {
  height: 38px;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

.company-logo-link-premium-transparent img {
  height: 38px;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

.company-card-header-center h3 {
  text-align: center;
  max-width: 320px;
}

.company-thumb-img-premium {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 8px;
  border: 1.5px solid #e6e6e6;
  background: #fff;
}

.company-name {
  letter-spacing: 0.01em;
}

.verify-badge {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  flex: 0 0 auto;
  transform: translateY(0.5px);
}

.verify-badge::before {
  content: "\2713";
  color: #f2f6ff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.verify-badge.is-verified {
  background: #19b25f;
}

.verify-badge.is-unverified {
  background: #7f8a9f;
}