.page{ padding: 34px 0 56px; }

.head{
  text-align:center;
  margin-bottom: 18px;
}
.title{
  margin: 0 0 8px;
  font-size: 34px;
  letter-spacing: -0.02em;
}
.sub{
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  font-size: 14px;
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}

.card{
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  padding: 18px;
}

.cardTitle{
  margin: 0 0 14px;
  font-size: 16px;
}

.sectionTitle{
  font-weight: 800;
  font-size: 13px;
  color: rgba(15,23,42,.75);
  margin: 10px 0 10px;
}

.field{ display:block; width:100%; }
.field span{
  display:block;
  font-size: 12px;
  color: #475569;
  margin-bottom: 6px;
  font-weight: 700;
}

.field input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  outline: none;
  font-size: 14px;
  background: white;
}
.field input:focus{
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.row3{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.row2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

/* switches */
.switches{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  margin-top: 10px;
}
.switchLine{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(15,23,42,.02);
  font-weight: 700;
  font-size: 13px;
  color: rgba(15,23,42,.80);
}

.switch{
  position:relative;
  width:46px;
  height:26px;
}
.switch input{ display:none; }
.slider{
  position:absolute;
  inset:0;
  background: rgba(15,23,42,.18);
  border-radius:999px;
  transition:.2s;
}
.slider:before{
  content:"";
  position:absolute;
  width:20px;
  height:20px;
  left:3px;
  top:3px;
  background:#fff;
  border-radius:50%;
  transition:.2s;
  box-shadow: 0 8px 20px rgba(2,6,23,.18);
}
.switch input:checked + .slider{
  background: rgba(37,99,235,.85);
}
.switch input:checked + .slider:before{
  transform: translateX(20px);
}

.actions{
  display:flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.status{
  margin-top: 10px;
  font-size: 12px;
  color: #94a3b8;
}

/* right */
.badge{
  border-radius: 16px;
  padding: 18px 16px;
  background: linear-gradient(180deg, rgba(47,111,222,.95), rgba(47,111,222,.88));
  color:#fff;
  border: 1px solid rgba(47,111,222,.35);
  box-shadow: 0 16px 30px rgba(47,111,222,.18);
  text-align:center;
  margin-bottom: 12px;
}
.badgeNum{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.badgeSub{
  opacity:.9;
  font-size: 13px;
  margin-top: 2px;
}

.resultList{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.rItem{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 12px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  background: rgba(15,23,42,.02);
  font-size: 13px;
}
.rLeft{ opacity:.92; font-weight: 700; }
.rRight{ font-weight: 900; }
.rRight.blue{ color: var(--blue); }

.actions2{
  display:flex;
  gap: 10px;
  margin-top: 12px;
}

@media (max-width: 980px){
  .grid{ grid-template-columns: 1fr; }
  .row3{ grid-template-columns: 1fr; }
  .switches{ flex-direction: column; }
}
