/* Minimal Styles - Only classes used by reports */

:root {
  --black: #222;
  --base-color-neutral--neutral-darker: #222;
  --text-color--text-secondary: #222;
}

/* Heading Styles */
.heading-style-h1 {
  color: var(--black);
  letter-spacing: -0.28125rem;
  font-family: Nimbussanl Bol, sans-serif;
  font-size: 5.625rem;
  font-weight: 700;
  line-height: 1.05;
}

.heading-style-h2 {
  letter-spacing: -0.1rem;
  margin-top: 15px;
  font-family: Nimbussanl Bol, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
}

.heading-style-h3 {
  letter-spacing: -0.1rem;
  font-family: Nimbussanl Reg, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.1;
}

.heading-style-h4 {
  color: var(--black);
  letter-spacing: -0.05rem;
  font-family: Nimbussanl Bol, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}

/* Text Utilities */
.text-size-small {
  letter-spacing: -0.02438rem;
  font-size: 0.875rem;
  line-height: 1.3;
}

.text-color-secondary {
  color: var(--text-color--text-secondary);
}

/* Button Styles */
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 32px;
  background-color: #5716f7;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #3c0fab;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(87, 22, 247, 0.3);
}

.btn-text {
  position: relative;
  z-index: 2;
  color: inherit;
}

.btn-arrow-holder {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.button:hover .btn-arrow-holder {
  transform: translateX(4px);
}

.btn-hover-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.button:hover .btn-hover-bg {
  opacity: 1;
}
