:root {
  --black: rgba(10, 10, 10, 1);
  --Color-2: #003ec7;
  /* Slightly lighter blue for primary CTA hovers (header + hero) */
  --Color-2-hover: #2a6aef;
  --light-purple: #f7f4fe;
}

/* Hero outer vertical padding: shrinks on short viewports (svh) so CTA stays above the fold */
.hero-viewport-pad {
  padding-top: clamp(0.75rem, 5svh, 11.25rem);
  padding-bottom: clamp(0.75rem, 5svh, 11.25rem);
}

@supports (height: 100dvh) {
  .hero-viewport-pad {
    padding-top: clamp(0.75rem, 5dvh, 11.25rem);
    padding-bottom: clamp(0.75rem, 5dvh, 11.25rem);
  }
}

/* app-removal: main = viewport height minus 100px header (footer scrolls below) */
.app-removal-main {
  min-height: calc(100vh - 100px);
}

@supports (height: 100dvh) {
  .app-removal-main {
    min-height: calc(100dvh - 100px);
  }
}

/* Feature cards (index): description block at least 3 lines at leading-6 (1.5rem) */
.feature-card-desc {
  min-height: calc(3 * 1.5rem);
}

/* Header CTA label */
.btn-cta-text {
  color: var(--light-purple, #f7f4fe);
  text-align: center;
  font-family: "Manrope", Helvetica, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
}

/* Hero CTA label: default keeps text inside the button in two-column layout (lg–xl) */
.btn-cta-text-hero {
  color: #fff;
  text-align: center;
  font-family: "Manrope", Helvetica, sans-serif;
  font-size: clamp(1.125rem, 1.6vw + 0.6rem, 2.4rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  min-width: 0;
  max-width: 100%;
}

/* 2xl+: more room in the row — allow the design max 56px when viewport is wide */
@media (min-width: 1536px) {
  .btn-cta-text-hero {
    font-size: clamp(2rem, 1.25vw + 0.75rem, 3.5rem);
  }
}
