.content-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
  padding: 120px 0 160px;
  box-sizing: border-box;
}

.content-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 620px;
  text-align: center;
}

.content-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 24px;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.76;
  color: #fff;
  text-transform: uppercase;
}

.content-subtitle {
  margin: 0 0 40px;
  font-family: Unbounded, Inter, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.76;
  color: #fff;
}

.content-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.content-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  background: rgba(22, 22, 25, 0.7);
  color: #fff;
  font: 500 14px/20px Inter, sans-serif;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.content-link:hover {
  border-color: rgba(87, 13, 121, 0.45);
  color: var(--landing-accent-soft);
}

@media (max-width: 640px) {
  .content-main {
    min-height: auto;
    padding: 80px 0 120px;
  }

  .content-title {
    font-size: 24px;
  }

  .content-subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }
}
