/* ============================================================
   Tektome — Homepage CTA strip (#cta).
   Matches the shared News/Blog CTA component: a light purple-50
   band with a faint diagonal sheen, mono eyebrow, Light display
   title + lede on the left, and actions on the right. Uses the
   shared .tk-btn classes. Loaded after resources.css.
   ============================================================ */

.home-cta {
  background: var(--purple-50);
  color: var(--fg-primary);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--purple-100);
}
.home-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    rgba(81,86,219,0) 0,
    rgba(81,86,219,0) 96px,
    rgba(81,86,219,0.04) 96px,
    rgba(81,86,219,0.04) 192px);
  pointer-events: none;
}
.home-cta__inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
}
.home-cta__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-arch-purple);
  margin: 0 0 16px;
}
.home-cta__eyebrow span { color: var(--gray-400); padding: 0 4px; }
.home-cta__title {
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg-primary);
  margin: 0 0 16px;
  text-wrap: balance;
}
.home-cta__lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-secondary);
  margin: 0;
  max-width: 54ch;
  text-wrap: pretty;
}
.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .home-cta__inner {
    grid-template-columns: minmax(0, 1fr);
    padding: 56px 28px;
    gap: 28px;
  }
  .home-cta__title { font-size: 34px; }
  .home-cta__actions { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .home-cta__actions { flex-direction: column; align-items: stretch; }
  .home-cta__actions .tk-btn { width: 100%; }
}
