:root{
  --bg:#0b1220;
  --ink:#0f172a;
  --muted:#475569;
  --card:#ffffff;
  --stroke:rgba(15,23,42,.10);
  --shadow: 0 20px 60px rgba(2,6,23,.10);
  --r:18px;
}

body{
  color: var(--ink);
  background: #fff;
}

.modern-hero{
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(99,102,241,.14), transparent 55%),
    radial-gradient(900px 500px at 80% 10%, rgba(239,68,68,.12), transparent 55%),
    linear-gradient(180deg, rgba(15,23,42,.04), transparent 60%);
}

.hero-card{
  border-radius: var(--r);
  padding: 18px 18px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.glass{
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
}

.hero-card i{ color:#f59e0b; }

.media-card{
  border-radius: calc(var(--r) + 6px);
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  background: #f8fafc;
}

.content-wrap{
  max-width: 980px;
  margin: 0 auto;
}

.section-title{
  padding: 10px 4px;
}

.modern-card{
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  box-shadow: 0 14px 40px rgba(2,6,23,.06);
}

.modern-card .card-body{
  padding: 18px 18px;
  color: var(--ink);
}

.modern-card p{
  color: var(--muted);
  line-height: 1.75;
}

.icon-chip{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: #ffffff;
}

.icon-chip i{
  width: 34px; height: 34px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  background: rgba(99,102,241,.10);
  color:#3730a3;
}

.icon-chip span{ color: var(--muted); font-weight: 600; }

.modern-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.modern-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  /*padding: 12px 14px;*/
  border-radius: 14px;
  /*border: 1px solid var(--stroke);*/
  background: #fff;
}

.modern-list li i{
  width: 34px; height: 34px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  background: rgba(34,197,94,.10);
  color:#166534;
  flex: 0 0 auto;
  margin-top: 2px;
}

.modern-list li span{
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}

.cta-band{
  border-radius: calc(var(--r) + 6px);
  border: 1px solid rgba(239,68,68,.20);
  background:
    radial-gradient(900px 300px at 20% 0%, rgba(239,68,68,.10), transparent 60%),
    linear-gradient(180deg, #fff, #fff);
  box-shadow: 0 18px 50px rgba(2,6,23,.08);
}

.cta-inner{ padding: 18px 18px; }

.empty-box{
  height: 170px;
  border: 2px solid rgba(15,23,42,.35);
  border-radius: 14px;
  background: #fff;
}