*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;background:#0b1220;color:#0f172a}
a{text-decoration:none}

.enterprise-shell{display:flex;min-height:100vh;background:#e2e8f0}
.sidebar{width:270px;background:#0f172a;color:#cbd5e1;padding:24px 18px;display:flex;flex-direction:column;gap:18px;border-right:1px solid rgba(255,255,255,.06)}
.brand{display:flex;align-items:center;gap:12px;padding:8px 10px 18px 10px;border-bottom:1px solid rgba(255,255,255,.08)}
.brand-mark{width:42px;height:42px;border-radius:12px;background:linear-gradient(135deg,#22c55e,#0ea5e9);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-size:20px}
.brand-title{font-size:18px;font-weight:800;color:#fff}
.brand-subtitle{font-size:12px;color:#94a3b8}

.nav-group{display:flex;flex-direction:column;gap:6px}
.nav-title{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:#64748b;margin:10px 10px 4px}
.nav-group a{padding:10px 12px;border-radius:10px;color:#cbd5e1;font-size:14px}
.nav-group a:hover{background:#111c31;color:#fff}

.main{flex:1;display:flex;flex-direction:column;min-width:0}
.topbar{display:flex;justify-content:space-between;align-items:flex-start;gap:20px;padding:24px 28px;background:#f8fafc;border-bottom:1px solid #cbd5e1}
.topbar h1{margin:0 0 6px 0;font-size:28px;color:#0f172a}
.topbar p{margin:0;color:#475569;font-size:14px}
.topbar-actions{display:flex;gap:12px;flex-wrap:wrap}

.btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 16px;border-radius:12px;font-weight:700;font-size:14px}
.btn-primary{background:#0f172a;color:#fff}
.btn-primary:hover{opacity:.92}
.btn-secondary{background:#fff;color:#0f172a;border:1px solid #cbd5e1}
.btn-secondary:hover{background:#f1f5f9}

.content{padding:28px}
.hero{display:flex;justify-content:space-between;gap:20px;align-items:flex-start;background:linear-gradient(135deg,#ffffff,#eef6ff);border:1px solid #dbeafe;border-radius:24px;padding:26px 28px;box-shadow:0 10px 30px rgba(15,23,42,.06);margin-bottom:22px}
.eyebrow{font-size:12px;font-weight:800;color:#0ea5e9;letter-spacing:.08em;text-transform:uppercase;margin-bottom:8px}
.hero h2{margin:0 0 10px 0;font-size:30px;color:#0f172a}
.hero p{margin:0;max-width:800px;color:#475569;line-height:1.6}
.hero-badges{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}

.badge{display:inline-flex;align-items:center;padding:8px 12px;border-radius:999px;font-size:12px;font-weight:800}
.badge.success{background:#dcfce7;color:#166534}
.badge.warning{background:#fef3c7;color:#92400e}

.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:18px}
.card{background:#fff;border:1px solid #e2e8f0;border-radius:22px;padding:20px;box-shadow:0 8px 24px rgba(15,23,42,.05)}
.card-head{display:flex;justify-content:space-between;gap:12px;align-items:center;margin-bottom:12px}
.card h3{margin:0;font-size:18px;color:#0f172a}
.card p{margin:0 0 14px 0;color:#475569;line-height:1.55;font-size:14px}
.status{padding:6px 10px;border-radius:999px;font-size:11px;font-weight:800;text-transform:uppercase}
.status.live{background:#dcfce7;color:#166534}
.status.planned{background:#e2e8f0;color:#334155}
.link{font-size:14px;font-weight:700;color:#0ea5e9}
.link:hover{text-decoration:underline}
.muted{font-size:13px;color:#64748b}

@media (max-width: 980px){
  .enterprise-shell{flex-direction:column}
  .sidebar{width:100%;border-right:none;border-bottom:1px solid rgba(255,255,255,.08)}
  .hero{flex-direction:column}
}

/* ===== FIX INPUT TEXT COLOR ===== */
input,
input[type="email"],
input[type="text"],
textarea {
    color:#111111 !important;
    background:#ffffff !important;
}

input::placeholder {
    color:#888888 !important;
}
