/* ── Hero ───────────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 1rem 5rem;
  position: relative;
}

.hero-eyebrow {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero h1 { margin-bottom: 1.2rem; }
.hero h1 span { color: var(--primary); }

.hero p {
  max-width: 560px;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(232, 131, 74, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ── Feature strip ──────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: var(--primary-dim);
  box-shadow: var(--shadow-glow);
}

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

.feature-card h3 { margin-bottom: 0.4rem; }
.feature-card p  { font-size: 0.95rem; color: var(--text-muted); }

/* ── Software preview ───────────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}

.software-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.software-card:hover {
  border-color: var(--primary-dim);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.software-card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.software-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.software-icon img { width: 100%; height: 100%; object-fit: cover; }
.software-icon .icon-fallback { font-size: 1.4rem; }

.software-card h3 { font-size: 1.1rem; margin: 0; }
.software-card p  { font-size: 0.9rem; color: var(--text-muted); flex: 1; }

.software-card-footer {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
}

.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  font-size: 1rem;
}
