/* ===============================
   HERO SECTION
================================ */
.hero{
  position:relative;
  padding:48px 18px 56px;
  overflow:hidden;
}

.heroInner{
  max-width:1100px;
  margin:0 auto;
  position:relative;
}

.heroBack{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-weight:900;
  font-size:13px;
  text-decoration:none;
  color:#0f172a;
  background:rgba(15,23,42,.06);
  border:1px solid rgba(15,23,42,.10);
  padding:8px 14px;
  border-radius:14px;
  box-shadow:0 8px 18px rgba(15,23,42,.10);
}

.pill{
  display:inline-block;
  margin:14px 0 8px;
  padding:8px 14px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  background:rgba(34,197,94,.14);
  color:#166534;
}

.hero h1{
  margin:8px 0 6px;
  font-size:clamp(28px,4vw,44px);
  line-height:1.1;
}

.subtitle{
  color:var(--rr-muted);
  max-width:560px;
  line-height:1.6;
}

/* ===============================
   HERO STATS
================================ */
.heroStats{
  display:flex;
  gap:18px;
  margin-top:20px;
  flex-wrap:wrap;
}

.stat{
  background:var(--rr-card);
  border-radius:16px;
  padding:14px 18px;
  box-shadow:var(--rr-shadow);
  border:1px solid rgba(15,23,42,.06);
  min-width:140px;
}

.statNum{
  font-size:28px;
  font-weight:1000;
}

.statLbl{
  font-size:12px;
  color:var(--rr-muted);
}

/* ===============================
   FLOATING DECOR
================================ */
.float{
  position:absolute;
  font-size:28px;
  opacity:.25;
  animation: floaty 14s ease-in-out infinite;
}

.f1{ top:30px; right:80px; }
.f3{ bottom:40px; left:60px; }
.f4{ top:120px; left:180px; }

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

/* ===============================
   PAGE + PANEL
================================ */
.page{
  padding:0 16px 40px;
}

.panel{
  max-width:1100px;
  margin:0 auto;
}

.panelTop{
  margin-bottom:18px;
}

.panelTop h2{
  margin:0;
  font-size:22px;
}

.muted{
  color:var(--rr-muted);
  font-size:14px;
}

/* ===============================
   CARDS GRID
================================ */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}

.card{
  position:relative;
  background:var(--rr-card);
  border-radius:20px;
  box-shadow:var(--rr-shadow);
  padding:18px;
  text-decoration:none;
  color:inherit;
  border:1px solid rgba(15,23,42,.06);
  transition:transform .18s ease, box-shadow .18s ease;
  overflow:hidden;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 44px rgba(15,23,42,.16);
}

.cardIcon{
  font-size:28px;
  width:54px;
  height:54px;
  border-radius:14px;
  display:grid;
  place-items:center;
  margin-bottom:12px;
}

.cardIcon.blue{ background:rgba(59,130,246,.18); }
.cardIcon.pink{ background:rgba(244,114,182,.18); }
.cardIcon.orange{ background:rgba(251,191,36,.20); }
.cardIcon.green{ background:rgba(34,197,94,.20); }
.cardIcon.purple{ background:rgba(168,85,247,.20); }

.cardBody h3{
  margin:0 0 4px;
  font-size:18px;
}

.eq{
  font-size:13px;
  font-weight:900;
  color:#334155;
}

.desc{
  font-size:13px;
  color:var(--rr-muted);
  line-height:1.5;
}

.cardRight{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:14px;
}

.chip.play{
  background:rgba(34,197,94,.14);
  color:#166534;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
}

.arrow{
  font-size:16px;
}

.shine{
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25), transparent 70%);
  opacity:0;
  transition:opacity .25s ease;
}

.card:hover .shine{
  opacity:1;
}

/* ===============================
   FOOTER
================================ */
.foot{
  margin-top:50px;
  padding:20px 0;
  text-align:center;
}

.footInner{
  font-size:12px;
  color:var(--rr-muted);
}

.dot{ margin:0 6px; }
