/* Unobits landing – additional marketing styles.
   These keep layout in Tailwind and just add small flourishes
   that line up with the in‑app theme colors. 
*/
:root {
  /* Match the app primary color from the app (Aplciasf/app.css) */
  --unb-brand: #07cfc1;
  --unb-brand-soft: rgba(7, 207, 193, 0.14);
}

/* Section label / kicker used in marketing copy */
.unb-section-kicker {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Feature overview cards on the Features page */
.unb-feature-card {
  position: relative;
  overflow: hidden;
}

.unb-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, var(--unb-brand-soft), transparent 55%);
  transition:
    opacity 160ms ease-out,
    transform 160ms ease-out;
  transform: translate3d(0, 6px, 0);
}

.unb-feature-card:hover::before,
.unb-feature-card:focus-within::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Light glow ring around feature icons */
.unb-feature-icon-ring {
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.6);
}

/* Simple float animation for small icon chips */
@keyframes unb-float {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-4px); }
}

.unb-float {
  animation: unb-float 6s ease-in-out infinite;
}

/* Fine‑tune wide screen grid so feature cards do not get too wide */
@media (min-width: 1280px) {
  .unb-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Add a subtle hover effect to the glass panels */
.glass-panel:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}