/* =========================
   AI hero right-column bullets
   ========================= */

/* simple tuning knobs */
.ai-bullets{
  --anim-speed: .85s;      /* overall slide speed */
  --stagger: 120ms;        /* delay between items */
  --card-bg: var(--surface, #fff);
  --muted: #4b5870;
  position: relative;
  display: grid;
  gap: 12px;
  isolation: isolate;
}

/* soft neural glow background */
.ai-bullets::before{
  content:"";
  position:absolute; inset:-6% -10% auto auto;
  width:min(36vw,520px); height:min(36vw,520px);
  background:
    radial-gradient(40% 40% at 35% 30%, rgba(99,102,241,.25), transparent 60%),
    radial-gradient(35% 35% at 70% 45%, rgba(16,185,129,.18), transparent 60%),
    radial-gradient(25% 25% at 55% 70%, rgba(59,130,246,.20), transparent 60%);
  filter: blur(30px) saturate(120%);
  z-index:-1;
  opacity:.85;
}

.ai-bullets__title{
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 22px);
}

/* bullet pill */
.ai-bullet{
  --accent:#22c55e;
  position: relative;
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--card-bg);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow:
    8px 8px 18px rgba(34,47,62,.12),
    -6px -6px 14px rgba(255,255,255,.75);

  opacity: 0;
  transform: translateX(10px);
  animation: aiIn var(--anim-speed) ease forwards;
  animation-delay: calc(var(--i,1) * var(--stagger));
}

/* accent marker + soft arrow */
.ai-bullet__accent{
  width: 14px; height: 14px; border-radius: 999px; background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent), #fff 80%);
  position: relative;
}
.ai-bullet__accent::after{
  content:""; position:absolute; left: 6px; top:50%;
  width: 12px; height: 12px; transform: translateY(-50%) rotate(25deg);
  border-radius: 2px 999px 999px 2px;
  background: linear-gradient(135deg, var(--accent), color-mix(in oklab, var(--accent), #000 18%));
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.12));
}

/* text */
.ai-bullet__body h4{
  margin: 0 0 2px; color:#2d3440; font-size:15px; font-weight:800;
}
.ai-bullet__body p{
  margin:0; color:#6b778c; font-size:13.5px; line-height:1.55;
}

/* animation keyframes */
@keyframes aiIn{ to{ opacity:1; transform: translateX(0); } }

/* responsive tweaks */
@media (max-width: 960px){
  .ai-bullet{ border-radius: 16px; grid-template-columns: 12px 1fr; }
  .ai-bullet__body h4{ font-size: 14.5px; }
  .ai-bullet__body p{ font-size: 13px; }
}
