﻿/* =====================================================================
   SCROLL-REVEAL
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  will-change: opacity, transform;
}
body.js-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* =====================================================================
   TRUST PILLS (hero)
   ===================================================================== */
.hero__trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 99px;
  background: rgba(56, 161, 105, 0.08);
  border: 1px solid rgba(95, 190, 144, 0.2);
  color: var(--accent-ink);
  letter-spacing: .01em;
}
[data-theme="light"] .trust-pill {
  background: #EDF7F1;
  border-color: #B8D8C8;
}

/* =====================================================================
   ICP GRID (Who it's for)
   ===================================================================== */
.icp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.icp__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.icp__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--green-line);
}
[data-theme="light"] .icp__card {
  background: var(--surface);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.icp__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(56, 161, 105, 0.08);
  border: 1px solid rgba(95, 190, 144, 0.2);
  margin-bottom: 18px;
}
.icp__icon svg { width: 22px; height: 22px; }
.icp__card h3 { font-size: 1.1rem; margin-bottom: 10px; letter-spacing: -.02em; }
.icp__card p { color: var(--muted); font-size: .95rem; line-height: 1.65; }

