:root{
  --iwo-yellow:#f4c400;
  --iwo-gray:#2b2b2b;
  --iwo-bg:#f5f6f8;
  --iwo-card:#ffffff;
  --iwo-border:rgba(0,0,0,.08);
}

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--iwo-bg);
  color: #1f1f1f;
}

.tp-wrap{
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 16px 40px;
}

.tp-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}

.tp-brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.tp-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: var(--iwo-yellow);
  box-shadow: 0 0 0 4px rgba(244,196,0,.25);
}

.tp-title{
  font-weight:800;
  letter-spacing:.2px;
}

.tp-card{
  background: var(--iwo-card);
  border:1px solid var(--iwo-border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}

.tp-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.tp-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 720px){
  .tp-row{ grid-template-columns: 1fr; }
}

label{ font-size:12px; opacity:.8; display:block; margin: 0 0 6px; }
input, textarea, select{
  width:100%;
  padding: 10px 12px;
  border:1px solid var(--iwo-border);
  border-radius: 10px;
  background:#fff;
  outline:none;
}
textarea{ min-height: 90px; resize: vertical; }

.tp-actions{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
}

.tp-btn{
  border:1px solid var(--iwo-border);
  background:#fff;
  padding: 10px 12px;
  border-radius: 10px;
  cursor:pointer;
  font-weight:700;
}

.tp-btn-primary{
  background: var(--iwo-yellow);
  border-color: rgba(0,0,0,.15);
}

.tp-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid var(--iwo-border);
  background:#fff;
  font-size:12px;
}

.tp-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.tp-item{
  border:1px solid var(--iwo-border);
  border-radius: 12px;
  padding: 12px;
  display:flex;
  justify-content:space-between;
  gap: 12px;
}

.tp-item h3{ margin:0 0 6px; font-size: 14px; }
.tp-muted{ opacity:.75; font-size:12px; }

.tp-badge{
  display:inline-block;
  padding: 4px 8px;
  border-radius: 8px;
  background:#f0f0f0;
  font-size:12px;
  font-weight:700;
}

.tp-badge.yellow{ background: rgba(244,196,0,.22); }

.tp-kv{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap: 8px;
  font-size: 13px;
}

.tp-kv div:nth-child(odd){ opacity:.75; }

.tp-checklist{
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.tp-check{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  border:1px solid var(--iwo-border);
  border-radius: 12px;
  padding: 10px;
}

.tp-check input[type="checkbox"]{ width:18px; height:18px; margin-top:2px; }

.tp-small{ font-size: 12px; opacity:.75; }
