/* ── DEV SCREEN ── */
.dev-section-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: #aaa; margin-bottom: 10px; }
.dev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.dev-tile { border: 1px solid #f0eee9; border-radius: 8px; padding: 14px 16px; }
.dev-tile-title { font-size: 13px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
.dev-tile-desc { font-size: 11.5px; color: #888; margin-bottom: 12px; line-height: 1.5; }
.dev-info { background: #f7f6f3; border-radius: 8px; padding: 12px 14px; font-size: 12px; color: #555; line-height: 2; }
/* Dev home cards */
.dev-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dev-home-card { border: 1.5px solid #ebe9e4; border-radius: 12px; padding: 18px 16px; cursor: pointer; transition: border-color .15s, box-shadow .15s; position: relative; }
.dev-home-card:hover { border-color: #d4d0c8; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.dev-home-card.locked { cursor: default; opacity: .7; }
.dev-home-card.locked:hover { border-color: #ebe9e4; box-shadow: none; }
.dev-home-card-icon { width: 36px; height: 36px; border-radius: 8px; background: #f7f6f3; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.dev-home-card-title { font-size: 13px; font-weight: 700; color: #1a1a1a; margin-bottom: 3px; }
.dev-home-card-desc { font-size: 11.5px; color: #888; line-height: 1.45; }
.dev-badge-wip { position: absolute; top: 12px; right: 12px; background: #f0eee9; color: #aaa; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 20px; letter-spacing: .3px; }
/* Sub-screen inside dev */
.dev-sub-back { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #555; cursor: pointer; margin-bottom: 20px; background: none; border: none; padding: 0; }
.dev-sub-back:hover { color: #1a1a1a; }
