/* ✅ Scoped (won’t break the site) */
.ic5-page{
  --bg:#f6f7fb;
  --card:#fff;
  --text:#0f172a;
  --muted:#64748b;
  --line:#e5e7eb;
  --shadow:0 10px 28px rgba(2,6,23,.08);
  --radius:18px;

  --green:#22c55e;
  --green2:#16a34a;

  background: radial-gradient(900px 600px at 10% 0%, #ffffff 0%, var(--bg) 55%);
  padding:26px 0 60px;
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}
.ic5-page, .ic5-page *{box-sizing:border-box}

.ic5-wrap{max-width:1180px;margin:0 auto;padding:0 18px;}

.ic5-hero{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px 18px 14px;
}
.ic5-hero h1{
  margin:0 0 6px;
  font-size:26px;
  letter-spacing:-.02em;
  line-height:1.15;
}
.ic5-hero h1 span{
  background:linear-gradient(90deg, rgba(34,197,94,.18), rgba(34,197,94,.06));
  border-radius:999px;
  padding:4px 10px;
  display:inline-block;
}
.ic5-hero p{
  margin:8px 0 0;
  color:var(--muted);
  line-height:1.55;
  max-width:980px;
}

.ic5-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
@media (max-width: 980px){
  .ic5-grid{grid-template-columns:1fr}
}

.ic5-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:14px;
}

.ic5-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.ic5-title{
  display:flex;
  gap:10px;
  align-items:flex-start;
  min-width:0;
}
.ic5-dot{
  width:10px;height:10px;border-radius:50%;margin-top:5px;
  background: radial-gradient(circle at 30% 30%, #86efac, var(--green2));
  box-shadow:0 0 0 4px rgba(34,197,94,.12);
  flex:0 0 auto;
}
.ic5-name{
  font-weight:900;
  font-size:14px;
  letter-spacing:-.01em;
  margin:0;
  line-height:1.2;
}
.ic5-desc{
  margin-top:4px;
  color:var(--muted);
  font-size:12px;
  line-height:1.45;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.ic5-chips{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.ic5-chip{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  white-space:nowrap;
}
.ic5-chip.rate{
  background:rgba(34,197,94,.12);
  border-color:rgba(34,197,94,.28);
  font-weight:900;
}

.ic5-block{
  background:linear-gradient(180deg,#fff,#fbfbfe);
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
  margin-top:10px;
}

.ic5-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}
.ic5-label{
  font-size:12px;
  color:var(--muted);
}
.ic5-rightval{
  font-weight:900;
  font-size:13px;
  color:var(--text);
}

.ic5-input{
  width:100%;
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  padding:12px 12px;
  font-size:14px;
  outline:none;
}
.ic5-input:focus{
  border-color: rgba(34,197,94,.55);
  box-shadow:0 0 0 4px rgba(34,197,94,.14);
}

/* ✅ Green moving line (range) */
.ic5-range{
  width:100%;
  height:10px;
  border-radius:999px;
  outline:none;
  -webkit-appearance:none;
  appearance:none;
  margin-top:10px;
  background: linear-gradient(to right,
    var(--green2) 0%,
    var(--green2) var(--p, 40%),
    #f3f4f6 var(--p, 40%),
    #f3f4f6 100%
  );
}
.ic5-range::-webkit-slider-thumb{
  -webkit-appearance:none;
  appearance:none;
  width:18px;height:18px;border-radius:50%;
  background:linear-gradient(180deg, #34d399, var(--green2));
  border:2px solid #0f7a38;
  box-shadow:0 8px 18px rgba(2,6,23,.18);
  cursor:pointer;
}
.ic5-range::-moz-range-thumb{
  width:18px;height:18px;border-radius:50%;
  background:linear-gradient(180deg, #34d399, var(--green2));
  border:2px solid #0f7a38;
  box-shadow:0 8px 18px rgba(2,6,23,.18);
  cursor:pointer;
}
.ic5-range::-moz-range-track{
  height:10px;
  border-radius:999px;
  background:transparent;
}

.ic5-minmax{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-top:8px;
  font-size:12px;
  color:var(--muted);
}
.ic5-hintline{
  margin-top:6px;
  font-size:12px;
  color:var(--muted);
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.ic5-hintline b{color:var(--text)}

.ic5-warn{
  margin-top:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(239,68,68,.25);
  background:rgba(239,68,68,.06);
  color:#7f1d1d;
  font-size:12px;
  display:none;
}

.ic5-metrics{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:10px;
  margin-top:12px;
}
@media (max-width: 560px){
  .ic5-metrics{grid-template-columns:1fr}
}
.ic5-metric{
  border:1px solid var(--line);
  border-radius:16px;
  background:#f8fafc;
  padding:10px 12px;
}
.ic5-metric .k{
  font-size:12px;
  color:var(--muted);
  margin-bottom:6px;
}
.ic5-metric .v{
  font-weight:900;
  font-size:14px;
}

.ic5-note{
  margin-top:8px;
  font-size:12px;
  color:var(--muted);
}

/* Small polish */
.ic5-card + .ic5-card{scroll-margin-top:20px}
.ic5-chip b{font-weight:900}