/* =========================================================
   HEADLINE INTRO – Tabs AI Style
   ========================================================= */

.c-headline {
  padding: var(--tc-space-16) var(--tc-container-padding) var(--tc-space-14);
  background: #ffffff;
  color: #020617;
  height: 70vh;
  align-content: center;
}

.c-headline__inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

/* Kicker ------------------------------------------------- */

.c-headline__kicker {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 1.75rem;
}

/* Title -------------------------------------------------- */

.c-headline__title {
  font-size: clamp(2.4rem, 3.3vw, 3.6rem);
  line-height: 1.07;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: #020617;
  margin: 0 0 1.75rem;
}

/* Text --------------------------------------------------- */

.c-headline__text {
  font-size: 1rem;
  line-height: 1.65;
  color: #4b5563;
  max-width: 34rem;
  margin: 0 auto 2.25rem;
}

/* Actions ------------------------------------------------ */

.c-headline__actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

/* Buttons ------------------------------------------------ */

.c-headline__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
	background 0.2s ease,
	color 0.2s ease,
	box-shadow 0.2s ease,
	transform 0.12s ease,
	border-color 0.2s ease;
}

/* Primary Button */

.c-headline__btn--primary {
  background: #020617;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.25);
}

.c-headline__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
}

/* Secondary Button */

.c-headline__btn--secondary {
  background: #f9fafb;
  color: #020617;
  border-color: #e5e7eb;
}

.c-headline__btn--secondary:hover {
  background: #f3f4f6;
}

.c-headline__btn-icon {
  font-size: 1rem;
  line-height: 1;
}

/* Responsive --------------------------------------------- */

@media (max-width: 900px) {
  .c-headline {
	padding-inline: 1.25rem;
	padding-top: var(--tc-space-14);
	padding-bottom: var(--tc-space-12);
  }

  .c-headline__title {
	font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .c-headline__actions {
	flex-direction: column;
	gap: 0.6rem;
  }

  .c-headline__btn {
	width: 100%;
	justify-content: center;
  }
}