/* Landing-only sections (brand.css required) */
.lead {
  margin: 1.25rem auto 0;
  max-width: 32rem;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 4px solid var(--surface);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn:hover {
  transform: translateY(-4px) scale(1.03);
}

.btn-primary {
  color: var(--surface);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 12px 0 rgba(0, 0, 0, 0.28);
}

.btn-glow {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: var(--cyan);
  opacity: 0.3;
  filter: blur(12px);
  z-index: -1;
}

.btn-ghost {
  color: var(--surface);
  background: transparent;
  box-shadow: inset 0 0 0 2px rgba(240, 242, 252, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.feature-card {
  padding: 1.35rem 1.25rem;
  background: var(--surface);
  color: var(--text);
  border: 4px solid var(--text);
  border-radius: 20px;
  box-shadow: 8px 8px 0 var(--accent-deep);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover {
  transform: rotate(-2deg) translateY(-4px);
}

.feature-card:nth-child(2) {
  box-shadow: 8px 8px 0 var(--accent);
}

.feature-card:nth-child(3) {
  box-shadow: 8px 8px 0 var(--cyan);
}

.feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.feature-card h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted-card);
}

@media (max-width: 520px) {
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
