/* colossi.app subpage styles — extends ../styles.css */

.hero--app { padding: 120px var(--pad) 100px; }
.hero--app__inner { position: relative; z-index: 1; text-align: center; max-width: 880px; }
.hero--app__inner .eyebrow--center { margin-bottom: 22px; }

.app-hero__title {
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02; font-weight: 500; letter-spacing: -0.025em;
  margin: 0 0 22px;
}
.app-hero__sub {
  font-size: 18px; line-height: 1.55; color: var(--fg-muted);
  max-width: 640px; margin: 0 auto;
}
.app-hero__ctas { justify-content: center; margin-top: 32px; }

.app-hero__pill {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 36px;
  padding: 8px 16px;
  font-size: 12px; letter-spacing: .04em; color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(242,146,10,.30);
  border-radius: 99px;
}

/* Benefits grid */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.benefit {
  background: var(--bg-3);
  padding: 32px 28px 34px;
  transition: background .25s, color .25s;
  color: rgba(255,255,255,.85);
}
.benefit:hover { background: #0a1030; color: var(--glow); }
.benefit:hover .benefit__icon { color: var(--glow); }
.benefit--wide { grid-column: span 3; display: flex; align-items: flex-start; gap: 24px; }
.benefit__icon { width: 38px; height: 38px; color: var(--glow); margin-bottom: 18px; flex-shrink: 0; }
.benefit__icon svg { width: 100%; height: 100%; }
.benefit--wide .benefit__icon { margin-bottom: 0; margin-top: 4px; }
.benefit--wide > div + .benefit__title { margin-top: 0; }
.benefit__title {
  font-size: 19px; font-weight: 500;
  line-height: 1.25; letter-spacing: -0.01em;
  margin: 0 0 10px; color: #fff;
}
.benefit__body { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.6); margin: 0; }

@media (max-width: 960px) {
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .benefit--wide { grid-column: span 2; flex-direction: column; gap: 0; }
  .benefit--wide .benefit__icon { margin-bottom: 18px; }
}
@media (max-width: 640px) {
  .benefits { grid-template-columns: 1fr; }
  .benefit--wide { grid-column: span 1; }
}
