/* assets/css/site.css */

:root{
  --bg1: #0b1220;
  --bg2: #101a30;
  --ink: #0f172a;
  --muted: #64748b;
  --card: rgba(255,255,255,0.06);
  --stroke: rgba(255,255,255,0.12);
}

body { color: var(--ink); }

.brand-mark{
  width: 14px; height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, #5eead4, #60a5fa, #a78bfa);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
}

.hero{
  background: radial-gradient(1200px 500px at 20% 10%, rgba(94,234,212,0.18), transparent 60%),
              radial-gradient(1200px 500px at 80% 10%, rgba(167,139,250,0.16), transparent 60%),
              linear-gradient(180deg, var(--bg1), var(--bg2));
  color: #fff;
  overflow: hidden;
  position: relative;
}

.page-hero{
  background: radial-gradient(900px 360px at 20% 10%, rgba(96,165,250,0.16), transparent 60%),
              linear-gradient(180deg, #0b1220, #0f1b33);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.text-gradient{
  background: linear-gradient(90deg, #5eead4, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .7rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: .85rem;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
}

.hero-card{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16) !important;
  backdrop-filter: blur(10px);
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

.feature-card{
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}

.feature-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(2,6,23,0.10);
}

.icon-badge{
  width: 44px; height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(96,165,250,0.16);
  border: 1px solid rgba(96,165,250,0.25);
  color: #0b2a5b;
  font-size: 1.2rem;
}

.icon-badge-dark{
  background: rgba(2,6,23,0.06);
  border: 1px solid rgba(2,6,23,0.10);
  color: #0f172a;
}

.mini-card{
  background: rgba(2,6,23,0.03);
  border: 1px solid rgba(2,6,23,0.08);
}

.cta-card{
  background: linear-gradient(135deg, rgba(96,165,250,0.12), rgba(94,234,212,0.10));
  border-color: rgba(2,6,23,0.10) !important;
}

.footer-title{
  font-weight: 600;
  margin-bottom: .5rem;
}

.footer-link{
  color: rgba(255,255,255,0.72);
  text-decoration: none;
}
.footer-link:hover{ color: #fff; }

.icon-btn{
  width: 40px; height: 40px;
  display: inline-flex;
  align-items:center; justify-content:center;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  text-decoration: none;
}

.stat{
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.1;
}

/* floating orbs */
.orb{
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: .55;
  animation: floaty 9s ease-in-out infinite;
  pointer-events: none;
}
.orb-1{ width: 160px; height:160px; left: -50px; top: 80px; background: rgba(94,234,212,0.28); }
.orb-2{ width: 220px; height:220px; right: -80px; top: 120px; background: rgba(167,139,250,0.22); animation-delay: -2s; }
.orb-3{ width: 120px; height:120px; left: 40%; bottom: -60px; background: rgba(96,165,250,0.22); animation-delay: -4s; }

@keyframes floaty{
  0%,100% { transform: translateY(0) translateX(0); }
  50%     { transform: translateY(-18px) translateX(10px); }
}

.anchor-offset{ scroll-margin-top: 90px; }

